
h1{
    text-align: center;
}

.wrapper{
   
    background-color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    max-height: 600px;
    margin: 50px auto;
    border-radius: 5px;
}
.wrapper h2{
    
    padding: 20px;
    text-align: center;
   background-color: rgb(62, 176, 215);
   border-top-left-radius:5px;
   border-top-right-radius:5px;
   
}
.wrapper p{
    margin-top: 30px;
    color: black;
    font-size: 20px;
    text-align: center;
}

.wrapper input{
    font-size: 20px;
    width: 400px;
    align-self: center;
    outline: none;
    border: none;
    height: 40px;
    text-align: center; 
}
.wrapper button{
    background-color: rgb(62, 176, 215);
    border-radius: 5px;
    font-size: 20px;
    width: 400px;
    height: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    align-self: center;
    outline: none;
    border: none;
    transition: .5s;
}
.wrapper button:hover{
    background-color: rgb(48, 143, 174);

}